home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Think Class Libraries / CommToolbox (modified) / Headers / stringx.h < prev   
Encoding:
C/C++ Source or Header  |  1994-11-30  |  360 b   |  28 lines  |  [TEXT/KAHL]

  1.  
  2. /*
  3.  *  stringx.h
  4.  *
  5.  *    miscellaneous string functions
  6.  *
  7.  *  Copyright (c) 1994 Ithran Einhorn.  All rights reserved.
  8.  *
  9.  */
  10.  
  11. #pragma once
  12.  
  13. #include <stdlib.h>
  14. #include <stdio.h>
  15. #include <string.h>
  16. #include <ctype.h>
  17.  
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21.  
  22. int stricmp(const char *, const char *);
  23. char *TrimRight(char *t_str);
  24.  
  25. #ifdef __cplusplus
  26. }
  27. #endif
  28.